bda070
@@ -330,7 +330,7 @@
public class ReflectivePropertyAccessor implements PropertyAccessor {
 		getterName = "is" + propertyWriteMethodSuffix;
 		for (Method method : ms) {
 			if (!method.isBridge() && method.getName().equals(getterName) && method.getParameterTypes().length == 0 &&
-					boolean.class.equals(method.getReturnType()) &&
+					(boolean.class.equals(method.getReturnType()) || Boolean.class.equals(method.getReturnType())) &&
 					(!mustBeStatic || Modifier.isStatic(method.getModifiers()))) {
 				return method;
 			}
